300
How can I change the font for entire item
OleObject f,oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
oComboBox.Items.AddItem("default font")
f = CREATE OLEObject
f.ConnectToNewObject("StdFont")
	f.Name = "Tahoma"
	f.Size = 12
var_Items = oComboBox.Items
	var_Items.ItemFont(var_Items.AddItem("new font"),f)

299
How do I vertically align a cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.DrawGridLines = -2
oComboBox.Columns.Add("MultipleLine").Def(16,false)
oComboBox.Columns.Add("VAlign")
var_Items = oComboBox.Items
	h = var_Items.AddItem("This is a bit of long text that should break the line")
	var_Items.CellCaption(h,1,"top")
	var_Items.CellVAlignment(h,1,0)
	h = var_Items.AddItem("This is a bit of long text that should break the line")
	var_Items.CellCaption(h,1,"middle")
	var_Items.CellVAlignment(h,1,1)
	h = var_Items.AddItem("This is a bit of long text that should break the line")
	var_Items.CellCaption(h,1,"bottom")
	var_Items.CellVAlignment(h,1,2)

298
How can I change the position of an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.AddItem("Item 1")
	var_Items.AddItem("Item 2")
	var_Items.ItemPosition(var_Items.AddItem("Item 3"),0)

297
How do I find an item based on a path

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.ItemData(var_Items.InsertItem(h,,"Child 2"),1234)
	var_Items.ExpandItem(h,true)
	var_Items.ItemBold(var_Items.FindPath("Root 1\Child 1"),true)

296
How do I find an item

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.ItemBold(var_Items.FindItem("Child 2",0),true)

295
How can I insert a hyperlink or an anchor element

OleObject oComboBox,var_Items,var_Items1

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	var_Items.CellCaptionFormat(var_Items.AddItem("Just an <a1>anchor</a> element ..."),0,1)
var_Items1 = oComboBox.Items
	var_Items1.CellCaptionFormat(var_Items1.AddItem("Just another <a2>anchor</a> element ..."),0,1)

294
How do I find the index of the item based on its handle

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.ItemBold(var_Items.ItemByIndex(var_Items.ItemToIndex(h)),true)

293
How do I find the handle of the item based on its index

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.ItemBold(var_Items.ItemByIndex(1),true)

292
How can I find the cell being clicked in a radio group

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.MarkSearchColumn = false
oComboBox.SelBackColor = RGB(255,255,128)
oComboBox.SelForeColor = RGB(0,0,0)
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
oComboBox.Columns.Add("C3")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"Radio 1")
	var_Items.CellHasRadioButton(h,1,true)
	var_Items.CellRadioGroup(h,1,1234)
	var_Items.CellCaption(h,2,"Radio 2")
	var_Items.CellHasRadioButton(h,2,true)
	var_Items.CellRadioGroup(h,2,1234)
	var_Items.CellState(h,1,1)
	var_Items.CellBold(,var_Items.CellChecked(1234),true)

291
Can I add a +/- ( expand / collapse ) buttons to each item, so I can load the child items later

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = -1
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.ItemHasChildren(var_Items.AddItem("parent item with no child items"),true)
	var_Items.AddItem("next item")

290
Can I let the user to resize at runtime the specified item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.ScrollBySingleLine = true
oComboBox.DrawGridLines = -2
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.ItemAllowSizing(var_Items.AddItem("resizable item"),true)
	var_Items.AddItem("not resizable item")

289
How can I change the size ( width, height ) of the picture

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.CellPicture(h,0,oComboBox.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)"))
	var_Items.CellPictureWidth(h,0,24)
	var_Items.CellPictureHeight(h,0,24)
	var_Items.ItemHeight(h,32)
	h = var_Items.AddItem("Root 2")
	var_Items.CellPicture(h,0,oComboBox.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)"))
	var_Items.ItemHeight(h,48)

288
How do I unselect an item

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.SelectItem(h,false)

287
How do I find the selected item

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.SelectItem(h,true)
	var_Items.ItemBold(var_Items.SelectedItem(0),true)

286
How do I select an item

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.SelectItem(h,true)

285
Can I display a button with some picture or icon inside

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.HTMLPicture("p1","c:\exontrol\images\zipdisk.gif")
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1," Button <img>p1</img> ")
	var_Items.CellCaptionFormat(h,1,1)
	var_Items.CellHAlignment(h,1,2)
	var_Items.CellHasButton(h,1,true)
	var_Items.ItemHeight(h,48)

284
Can I display a button with some picture or icon inside

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1," Button <img>1</img> ")
	var_Items.CellCaptionFormat(h,1,1)
	var_Items.CellHAlignment(h,1,2)
	var_Items.CellHasButton(h,1,true)

283
Can I display a button with some icon inside

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1," <img>1</img> ")
	var_Items.CellCaptionFormat(h,1,1)
	var_Items.CellHAlignment(h,1,2)
	var_Items.CellHasButton(h,1,true)

282
How can I assign multiple icon/picture to a cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.HTMLPicture("p1","c:\exontrol\images\zipdisk.gif")
oComboBox.HTMLPicture("p2","c:\exontrol\images\auction.gif")
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("text <img>p1</img> another picture <img>p2</img> and so on")
	var_Items.CellCaptionFormat(h,0,1)
	var_Items.CellPicture(h,0,oComboBox.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)"))
	var_Items.ItemHeight(h,48)
	var_Items.AddItem("Root 2")

281
How can I assign an icon/picture to a cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.CellPicture(h,0,oComboBox.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)"))
	var_Items.ItemHeight(h,48)
	var_Items.AddItem("Root 2")

280
How can I assign multiple icons/pictures to a cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root <img>1</img> 1, <img>2</img>, ... and so on ")
	var_Items.CellCaptionFormat(h,0,1)

279
How can I assign multiple icons/pictures to a cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.CellImages(h,0,"1,2,3")

278
How can I assign an icon/picture to a cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.CellImage(h,0,1)
	var_Items.CellImage(var_Items.InsertItem(h,,"Child 1"),0,2)
	var_Items.CellImage(var_Items.InsertItem(h,,"Child 2"),0,3)
	var_Items.ExpandItem(h,true)

277
How can I get the handle of an item based on the handle of the cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.ItemBold(var_Items.CellItem(var_Items.ItemCell(h,0)),true)

276
How can I display a button inside the item or cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1," Button 1 ")
	var_Items.CellHAlignment(h,1,2)
	var_Items.CellHasButton(h,1,true)
	h = var_Items.AddItem("Cell 2")
	var_Items.CellCaption(h,1," Button 2 ")
	var_Items.CellHAlignment(h,1,1)
	var_Items.CellHasButton(h,1,true)

275
How can I change the state of a radio button

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.MarkSearchColumn = false
oComboBox.SelBackColor = RGB(255,255,128)
oComboBox.SelForeColor = RGB(0,0,0)
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
oComboBox.Columns.Add("C3")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"Radio 1")
	var_Items.CellHasRadioButton(h,1,true)
	var_Items.CellRadioGroup(h,1,1234)
	var_Items.CellCaption(h,2,"Radio 2")
	var_Items.CellHasRadioButton(h,2,true)
	var_Items.CellRadioGroup(h,2,1234)
	var_Items.CellState(h,1,1)

274
How can I assign a radio button to a cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.MarkSearchColumn = false
oComboBox.SelBackColor = RGB(255,255,128)
oComboBox.SelForeColor = RGB(0,0,0)
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
oComboBox.Columns.Add("C3")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"Radio 1")
	var_Items.CellHasRadioButton(h,1,true)
	var_Items.CellRadioGroup(h,1,1234)
	var_Items.CellCaption(h,2,"Radio 2")
	var_Items.CellHasRadioButton(h,2,true)
	var_Items.CellRadioGroup(h,2,1234)
	var_Items.CellState(h,1,1)

273
How can I change the state of a checkbox

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"Check Box")
	var_Items.CellHasCheckBox(h,1,true)
	var_Items.CellState(h,1,1)

272
How can I assign a checkbox to a cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"Check Box")
	var_Items.CellHasCheckBox(h,1,true)

271
How can I display an item or a cell on multiple lines

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.ScrollBySingleLine = true
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"This is bit of text that's shown on multiple lines")
	var_Items.CellSingleLine(h,1,false)

270
How can I assign a tooltip to a cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"tooltip")
	var_Items.CellToolTip(h,1,"This is bit of text that's shown when the user hovers the cell")

269
How can I associate an extra data to a cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"Cell 2")
	var_Items.CellData(h,1,"your extra data")

268
How do I enable or disable a cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"Cell 2")
	var_Items.CellEnabled(h,1,false)

267
How do I change the cell's foreground color

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"Cell 2")
	var_Items.CellForeColor(h,1,RGB(255,0,0))

266
How do I change the visual effect for the cell, using your EBN files

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"Cell 2")
	var_Items.CellBackColor(h,1,16777216 /*0x1000000*/)

265
How do I change the cell's background color

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"Cell 2")
	var_Items.CellBackColor(h,1,RGB(255,0,0))

264
How do I change the caption or value for a particular cell

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	var_Items.CellCaption(var_Items.AddItem("Cell 1"),1,"Cell 2")

263
How do I get the handle of the cell

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.CellBold(,var_Items.ItemCell(h,0),true)

262
How do I retrieve the focused item

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.ItemBold(var_Items.FocusItem,true)

261
How do I get the number or count of child items

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.AddItem(var_Items.ChildCount(h))

260
How do I enumerate the visible items

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("Root 2")
	var_Items.ItemBold(var_Items.FirstVisibleItem,true)
	var_Items.ItemBold(var_Items.NextVisibleItem(var_Items.FirstVisibleItem),true)

259
How do I enumerate the siblings items

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("Root 2")
	var_Items.ItemBold(var_Items.NextSiblingItem(var_Items.FirstVisibleItem),true)
	var_Items.ItemBold(var_Items.PrevSiblingItem(var_Items.NextSiblingItem(var_Items.FirstVisibleItem)),true)

258
How do I get the parent item

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.ItemBold(var_Items.ItemParent(var_Items.ItemChild(h)),true)

257
How do I get the first child item

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.ItemBold(var_Items.ItemChild(h),true)

256
How do I enumerate the root items

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("Root 2")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ItemBold(var_Items.RootItem(0),true)
	var_Items.ItemUnderline(var_Items.RootItem(1),true)

255
I have a hierarchy, how can I count the number of root items

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root 1")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	h = var_Items.AddItem("Root 2")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.AddItem(var_Items.RootCount)

254
How can I make an item unselectable, or not selectable

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	h = var_Items.AddItem("unselectable - you can't get selected")
	var_Items.SelectableItem(h,false)
	var_Items.AddItem("selectable")

253
How can I hide or show an item

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Column")
var_Items = oComboBox.Items
	h = var_Items.AddItem("hidden")
	var_Items.ItemHeight(h,0)
	var_Items.SelectableItem(h,false)
	var_Items.AddItem("visible")

252
How can I change the height for all items

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.DefaultItemHeight = 32
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem("One")
oComboBox.Items.AddItem("Two")

251
How do I change the height of an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.ScrollBySingleLine = true
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.ItemHeight(var_Items.AddItem("height"),128)
oComboBox.Items.AddItem("enabled")

250
How do I disable or enable an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.EnableItem(var_Items.AddItem("disabled"),false)
oComboBox.Items.AddItem("enabled")

249
How do I display as strikeout a cell

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.CellStrikeOut(var_Items.AddItem("strikeout"),0,true)

248
How do I display as strikeout a cell or an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.CellCaptionFormat(var_Items.AddItem("gets <s>strikeout</s> only a portion of text"),0,1)

247
How do I display as strikeout an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.ItemStrikeOut(var_Items.AddItem("strikeout"),true)

246
How do I underline a cell

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.CellUnderline(var_Items.AddItem("underline"),0,true)

245
How do I underline a cell or an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.CellCaptionFormat(var_Items.AddItem("gets <u>underline</u> only a portion of text"),0,1)

244
How do I underline an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.ItemUnderline(var_Items.AddItem("underline"),true)

243
How do I display as italic a cell

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.CellItalic(var_Items.AddItem("italic"),0,true)

242
How do I display as italic a cell or an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.CellCaptionFormat(var_Items.AddItem("gets <i>italic</i> only a portion of text"),0,1)

241
How do I display as italic an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.ItemItalic(var_Items.AddItem("italic"),true)

240
How do I bold a cell

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.CellBold(var_Items.AddItem("bold"),0,true)

239
How do I bold a cell or an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.CellCaptionFormat(var_Items.AddItem("gets <b>bold</b> only a portion of text"),0,1)

238
How do I bold an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.ItemBold(var_Items.AddItem("bold"),true)

237
How do I change the foreground color for the item

OleObject oComboBox,var_Items
any h,hC

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root")
	hC = var_Items.InsertItem(h,,"Child 1")
	var_Items.ItemForeColor(hC,RGB(255,0,0))
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)

236
How do I change the visual appearance for the item, using your EBN technology

OleObject oComboBox,var_Items
any h,hC

oComboBox = ole_1.Object
oComboBox.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root")
	hC = var_Items.InsertItem(h,,"Child 1")
	var_Items.ItemBackColor(hC,16777216 /*0x1000000*/)
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)

235
How do I change the background color for the item

OleObject oComboBox,var_Items
any h,hC

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root")
	hC = var_Items.InsertItem(h,,"Child 1")
	var_Items.ItemBackColor(hC,RGB(255,0,0))
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)

234
How do I expand or collapse an item

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)

233
How do I associate an extra data to an item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.ItemData(var_Items.AddItem("item"),"your extra data")

232
How do I get the number or count of items

OleObject oComboBox,var_Items,var_Items1
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
var_Items1 = oComboBox.Items
	var_Items1.AddItem(var_Items1.ItemCount)

231
How can I change at runtime the parent of the item

OleObject oComboBox,var_Items
any hC,hP

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = -1
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	hP = var_Items.AddItem("Root")
	hC = var_Items.AddItem("Child")
	var_Items.SetParent(hC,hP)

230
How can I sort the items

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
oComboBox.Columns.Item("Default").SortOrder = 2

229
How do I sort the child items

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Root")
	var_Items.InsertItem(h,,"Child 1")
	var_Items.InsertItem(h,,"Child 2")
	var_Items.ExpandItem(h,true)
	var_Items.SortChildren(h,0,false)

228
How can I remove or delete all items

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
oComboBox.Items.AddItem("removed item")
oComboBox.Items.RemoveAllItems()

227
How can I remove or delete an item

OleObject oComboBox
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
h = oComboBox.Items.AddItem("removed item")
oComboBox.Items.RemoveItem(h)

226
How can I add or insert child items

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = -1
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	h = var_Items.AddItem("Cell 1")
	var_Items.CellCaption(h,1,"Cell 2")
	var_Items.CellCaption(var_Items.InsertItem(h,,"Cell 3"),1,"Cell 4")
	var_Items.CellCaption(var_Items.InsertItem(h,,"Cell 5"),1,"Cell 6")
	var_Items.ExpandItem(h,true)

225
How can I add or insert a child item

OleObject oComboBox,var_Items

oComboBox = ole_1.Object
oComboBox.LinesAtRoot = -1
oComboBox.Columns.Add("Default")
var_Items = oComboBox.Items
	var_Items.InsertItem(var_Items.AddItem("root"),,"child")

224
How can I add or insert an item

OleObject oComboBox,var_Items
any h

oComboBox = ole_1.Object
oComboBox.Columns.Add("C1")
oComboBox.Columns.Add("C2")
var_Items = oComboBox.Items
	var_Items.CellCaption(var_Items.AddItem("Cell 1"),1,"Cell 2")
	h = var_Items.AddItem("Cell 3")
	var_Items.CellCaption(h,1,"Cell 4")

223
How can I add or insert an item

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Default")
oComboBox.Items.AddItem("new item")

222
How can I get the columns as they are shown in the control's sortbar
OleObject oComboBox,var_Object

oComboBox = ole_1.Object
var_Object = oComboBox.Columns.ItemBySortPosition(0)

221
How can I access the properties of a column

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("A")
oComboBox.Columns.Item("A").HeaderBold = true

220
How can I remove all the columns

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Clear()

219
How can I remove a column

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Remove("A")

218
How can I get the number or the count of columns
OleObject oComboBox
any var_Count

oComboBox = ole_1.Object
var_Count = oComboBox.Columns.Count

217
How can I change the font for all cells in the entire column

OleObject f,oComboBox,var_ConditionalFormat

oComboBox = ole_1.Object
f = CREATE OLEObject
f.ConnectToNewObject("StdFont")
	f.Name = "Tahoma"
	f.Size = 12
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1")
	var_ConditionalFormat.Font = f
	var_ConditionalFormat.ApplyTo = 0
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

216
How can I change the background color for all cells in the column

OleObject oComboBox,var_ConditionalFormat

oComboBox = ole_1.Object
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1")
	var_ConditionalFormat.BackColor = RGB(255,0,0)
	var_ConditionalFormat.ApplyTo = 0
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

215
How can I change the foreground color for all cells in the column

OleObject oComboBox,var_ConditionalFormat

oComboBox = ole_1.Object
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1")
	var_ConditionalFormat.ForeColor = RGB(255,0,0)
	var_ConditionalFormat.ApplyTo = 0
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

214
How can I show as strikeout all cells in the column

OleObject oComboBox,var_ConditionalFormat

oComboBox = ole_1.Object
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1")
	var_ConditionalFormat.StrikeOut = true
	var_ConditionalFormat.ApplyTo = 0
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

213
How can I underline all cells in the column

OleObject oComboBox,var_ConditionalFormat

oComboBox = ole_1.Object
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1")
	var_ConditionalFormat.Underline = true
	var_ConditionalFormat.ApplyTo = 0
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

212
How can I show in italic all data in the column

OleObject oComboBox,var_ConditionalFormat

oComboBox = ole_1.Object
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1")
	var_ConditionalFormat.Italic = true
	var_ConditionalFormat.ApplyTo = 0
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

211
How can I bold the entire column

OleObject oComboBox,var_ConditionalFormat

oComboBox = ole_1.Object
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("1")
	var_ConditionalFormat.Bold = true
	var_ConditionalFormat.ApplyTo = 0
oComboBox.Columns.Add("Column")
oComboBox.Items.AddItem(0)
oComboBox.Items.AddItem(1)

210
How can I display a computed column and highlight some values that are negative or less than a value

OleObject oComboBox,var_ConditionalFormat,var_Items,var_Items1

oComboBox = ole_1.Object
oComboBox.Columns.Add("A")
oComboBox.Columns.Add("B")
oComboBox.Columns.Add("(A+B)*1.19").ComputedField = "(%0 + %1) * 1.19"
var_Items = oComboBox.Items
	var_Items.CellCaption(var_Items.AddItem(1),1,2)
var_Items1 = oComboBox.Items
	var_Items1.CellCaption(var_Items1.AddItem(10),1,20)
var_ConditionalFormat = oComboBox.ConditionalFormats.Add("%2 > 10")
	var_ConditionalFormat.Bold = true
	var_ConditionalFormat.ForeColor = RGB(255,0,0)
	var_ConditionalFormat.ApplyTo = 2 /*0x2 | */

209
Can I display a computed column so it displays the VAT, or SUM

OleObject oComboBox,var_Items,var_Items1

oComboBox = ole_1.Object
oComboBox.Columns.Add("A")
oComboBox.Columns.Add("B")
oComboBox.Columns.Add("(A+B)*1.19").ComputedField = "(%0 + %1) * 1.19"
var_Items = oComboBox.Items
	var_Items.CellCaption(var_Items.AddItem(1),1,2)
var_Items1 = oComboBox.Items
	var_Items1.CellCaption(var_Items1.AddItem(10),1,20)

208
How can I show a column that adds values in the cells

OleObject oComboBox,var_Items,var_Items1

oComboBox = ole_1.Object
oComboBox.Columns.Add("A")
oComboBox.Columns.Add("B")
oComboBox.Columns.Add("A+B").ComputedField = "%0 + %1"
var_Items = oComboBox.Items
	var_Items.CellCaption(var_Items.AddItem(1),1,2)
var_Items1 = oComboBox.Items
	var_Items1.CellCaption(var_Items1.AddItem(10),1,20)

207
Is there any function to filter the control's data as I type, so the items being displayed include the typed characters

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Filter")
	var_Column.FilterOnType = true
	var_Column.DisplayFilterButton = true
	var_Column.AutoSearch = 1
oComboBox.Items.AddItem("Canada")
oComboBox.Items.AddItem("USA")

206
Is there any function to filter the control's data as I type, something like filter on type

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Filter")
	var_Column.FilterOnType = true
	var_Column.DisplayFilterButton = true
oComboBox.Items.AddItem("Canada")
oComboBox.Items.AddItem("USA")

205
How can I programmatically filter a column

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Filter")
	var_Column.DisplayFilterButton = true
	var_Column.FilterType = 2
oComboBox.Items.AddItem()
oComboBox.Items.AddItem("not empty")
oComboBox.ApplyFilter()

204
How can I show or display the control's filter

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("Filter").DisplayFilterButton = true

203
How can I customize the items being displayed in the drop down filter window

OleObject oComboBox,var_Column

oComboBox = ole_1.Object
var_Column = oComboBox.Columns.Add("Custom Filter")
	var_Column.DisplayFilterButton = true
	var_Column.DisplayFilterPattern = false
	var_Column.CustomFilter = "Excel Spreadsheets (*.xls )||*.xls|||Word Documents||*.doc|||Powerpoint Presentations||*.pps|||Text Documents (*.log,*.txt)||*.txt|*.log"
	var_Column.FilterType = 3
	var_Column.Filter = "*.xls"
oComboBox.Items.AddItem("excel.xls")
oComboBox.Items.AddItem("word.doc")
oComboBox.Items.AddItem("pp.pps")
oComboBox.Items.AddItem("text.txt")
oComboBox.ApplyFilter()

202
How can I change the order or the position of the columns in the sort bar

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.SortBarVisible = true
oComboBox.SortBarColumnWidth = 48
oComboBox.Columns.Add("C1").SortOrder = 1
oComboBox.Columns.Add("C2").SortOrder = 2
oComboBox.Columns.Item("C2").SortPosition = 0

201
How do I arrange my columns on multiple levels

OleObject oComboBox

oComboBox = ole_1.Object
oComboBox.Columns.Add("S").Width = 32
oComboBox.Columns.Add("Level 2").LevelKey = 1
oComboBox.Columns.Add("Level 3").LevelKey = 1
oComboBox.Columns.Add("Level 4").LevelKey = 1
oComboBox.Columns.Add("Level 1").LevelKey = "2"
oComboBox.Columns.Add("Level 2").LevelKey = "2"
oComboBox.Columns.Add("Level 3").LevelKey = "2"
oComboBox.Columns.Add("Level 4").LevelKey = "2"
oComboBox.Columns.Add("E").Width = 32